/* Dropdown control */
.selectBox-dropdown {
    min-width: 150px;
    position: relative;
    border: solid 1px #BBB;
    line-height: 1.5;
    text-decoration: none;
    text-align: left;
    color: #000;
    outline: none;
    vertical-align: middle;
    background: #F2F2F2;
    background: -moz-linear-gradient(top, #F8F8F8 1%, #E1E1E1 100%);
    background: -webkit-gradient(linear, left top, left bottom, color-stop(1%, #F8F8F8), color-stop(100%, #E1E1E1));
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#F8F8F8', endColorstr='#E1E1E1', GradientType=0);
    -moz-box-shadow: 0 1px 0 rgba(255, 255, 255, .75);
    -webkit-box-shadow: 0 1px 0 rgba(255, 255, 255, .75);
    box-shadow: 0 1px 0 rgba(255, 255, 255, .75);
    -webkit-border-radius: 4px;
    -moz-border-radius: 4px;
    border-radius: 4px;
    display: inline-block;
    cursor: default;
}

.selectBox-dropdown:focus,
.selectBox-dropdown:focus .selectBox-arrow {
    border-color: #666;
}

.selectBox-dropdown.selectBox-menuShowing-bottom {
    -moz-border-radius-bottomleft: 0;
    -moz-border-radius-bottomright: 0;
    -webkit-border-bottom-left-radius: 0;
    -webkit-border-bottom-right-radius: 0;
    border-bottom-left-radius: 0;
    border-bottom-right-radius: 0;
}

.selectBox-dropdown.selectBox-menuShowing-top {
    -moz-border-radius-topleft: 0;
    -moz-border-radius-topright: 0;
    -webkit-border-top-left-radius: 0;
    -webkit-border-top-right-radius: 0;
    border-top-left-radius: 0;
    border-top-right-radius: 0;
}

.selectBox-dropdown .selectBox-label {
    padding: 2px 8px;
    display: inline-block;
    white-space: nowrap;
    overflow: hidden;
}

.selectBox-dropdown .selectBox-arrow {
    position: absolute;
    top: 0;
    right: 0;
    width: 23px;
    height: 100%;
    background: url(jquery.selectBox-arrow.gif) 50% center no-repeat;
    border-left: solid 1px #BBB;
}

/* Dropdown menu */
.selectBox-dropdown-menu {
    position: absolute;
    z-index: 99999;
    max-height: 200px;
    min-height: 1em;
    border: solid 1px #BBB; /* should be the same border width as .selectBox-dropdown */
    background: #FFF;
    -moz-box-shadow: 0 2px 6px rgba(0, 0, 0, .2);
    -webkit-box-shadow: 0 2px 6px rgba(0, 0, 0, .2);
    box-shadow: 0 2px 6px rgba(0, 0, 0, .2);
    overflow: auto;
    -webkit-overflow-scrolling: touch;
    
    /*width: calc(100% - 85vw) !important;*/
    /*margin-left: 20px !important;*/

}

/* Inline control */
.selectBox-inline {
    min-width: 150px;
    outline: none;
    border: solid 1px #BBB;
    background: #FFF;
    display: inline-block;
    -webkit-border-radius: 4px;
    -moz-border-radius: 4px;
    border-radius: 4px;
    overflow: auto;
}

.selectBox-inline:focus {
    border-color: #666;
}

/* Options */
.selectBox-options,
.selectBox-options LI,
.selectBox-options LI A {
    list-style: none;
    display: block;
    cursor: default;
    padding: 0;
    margin: 0;
}

.selectBox-options.selectBox-options-top{
    border-bottom:none;
	margin-top:1px;
	-moz-border-radius-topleft: 5px;
    -moz-border-radius-topright: 5px;
    -webkit-border-top-left-radius: 5px;
    -webkit-border-top-right-radius: 5px;
    border-top-left-radius: 5px;
    border-top-right-radius: 5px;
}
.selectBox-options.selectBox-options-bottom{
	border-top:none;
    -moz-border-radius-bottomleft: 5px;
    -moz-border-radius-bottomright: 5px;
    -webkit-border-bottom-left-radius: 5px;
    -webkit-border-bottom-right-radius: 5px;
    border-bottom-left-radius: 5px;
    border-bottom-right-radius: 5px;
}

.selectBox-options LI A {
    line-height: 1.5;
    padding: 0 .5em;
    white-space: nowrap;
    overflow: hidden;
    background: 6px center no-repeat;
}

.selectBox-options LI.selectBox-hover A {
    background-color: #EEE;
}

.selectBox-options LI.selectBox-disabled A {
    color: #888;
    background-color: transparent;
}

.selectBox-options LI.selectBox-selected A {
    /*background-color: #C8DEF4;*/
    background-color: rgba(78, 131, 235, 1);
    color: white !important;
}

.selectBox-options LI.selectBox-selected A:hover {
    color: #515253 !important;
}

.selectBox-options .selectBox-optgroup {
    color: #515253;
    background: #f1f1f1;
    font-weight: bold;
    line-height: 1.5;
    /*padding: 0 .3em;*/
    padding: 8px 15px 7px 25px;
    white-space: nowrap;
}

.select2-container--default .select2-results__option--highlighted.select2-results__option--selectable {
    background-color: rgba(78, 131, 235, 1);
}
.select2-results__option {
    padding: 8px 15px 7px 25px;
    font-family: DIN Next LT Pro;
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: 14px;    
}
.select2-container .select2-selection .select2-selection__rendered {
    font-family: DIN Next LT Pro;
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: 14px;
    color: rgba(81, 82, 83, .5);
}
.select2-container .select2-selection--single {
    display: flex;
    align-items:center;
}
/* Disabled state */
.selectBox.selectBox-disabled {
    color: #888 !important;
}

.selectBox-dropdown.selectBox-disabled .selectBox-arrow {
    opacity: .5;
    filter: alpha(opacity=50);
    border-color: #666;
}

.selectBox-inline.selectBox-disabled {
    color: #888 !important;
}

.selectBox-inline.selectBox-disabled .selectBox-options A {
    background-color: transparent !important;
}

.selectBox-dropdown {
    background: transparent;
    border: 1px solid #ACACAC;
    border-radius: 25px !important;
    min-width: 80px;
    height: 45px;
    padding: 15px 20px 15px 25px;
    font-size: 12px;
    line-height: 16px;
    font-weight: normal;
}
@media all and (max-width: 768px) {
    .selectBox-dropdown {
        min-width: 100%;
    }
}

.selectBox-dropdown .selectBox-label {
    overflow: unset;
    padding: unset;
}
.selectBox-dropdown-menu {
    background: white;
    box-shadow: unset;
}
.selectBox-options.selectBox-options-bottom {
    /*border-top: solid 1px #BBB*/
}
.selectBox-dropdown .selectBox-arrow {
    transition: all .2s ease-in ;
    /*top: 3px;*/
    right: 9px;
    border-left: unset;
    background: url('/media/select-arrow.svg') 50% center no-repeat;
    opacity: 1;
}
.selectBox-menuShowing .selectBox-arrow  {
    transition: all .2s ease-in;
    transform: rotate(180deg);
    opacity: 1;
}
.selectBox-dropdown .selectBox-label {
    font-style: normal;
    font-weight: 600;
    font-size: 12px;
    line-height: 16px;

    color: rgba(81, 82, 83, .5);
}
.selectBox-options LI A {
    padding: 5px 10px;
}
@media all and (min-width: 1024px) {
    .selectBox__display {
        /*margin-right: 20px;*/
    }
}
.selectBox__display label {
    padding-right: 5px;
}





.newsCreate #file-name {
    
  background-image: url(/media/upload.svg);
}
.textareaInput, .newsCreate .mediaSet .textareaInput {
  border: 1px solid rgb(175 175 175 / 42%);
}
.newsCreate .mediaSet {
  border: none !important;
}
.textareaInput:focus-visible {
  outline-color: #afafaf;
  outline-style: dotted
}
.media-file-border {
  border: none !important;
 
}
.newsCreate .img_preview_wrap {
  position: relative;
  z-index: 0;
}
/*box image upload*/
.mediaTitle {
  border-bottom: 1px solid #F1F1F1;
}
.image {
  position: relative;
  height: 100%;
  width: 100%;    
}

.newsCreate .mediaSet .img_preview_wrap {
  position: absolute;
  z-index: 0;
  top: 0;
  width: 100%;
  height: 100%;
}
.newsCreate .mediaSet .img_preview_wrap img {
  min-height: 100%;
  min-width: 100%;
  padding: 10px;
  -o-object-fit: cover;
  object-fit: cover;
}

.newsCreate .mediaSet .file-box-container {
  border-top: 1px solid #F1F1F1;
  width: 100%;
  height: 150px;
  position: absolute;
  z-index: 1;
  top: 0;
}
.border-grey-left {
  border-top: 1px solid #F1F1F1;
  border-left: 1px solid #F1F1F1;
  border-bottom: 1px solid #F1F1F1;
  position: relative;
  height: 150px;
  width: 100%;
}
.border-grey-right {
  border: 1px solid #F1F1F1;    
  position: relative;
  height: 100%;
  width: 100%;
}






.newsCreate .mediaSet .textareaInput {   
    width: 100% !important; 
    margin-left: unset !important;
        max-width: 100% !important;
   
}

.newsCreate .btnInput, .inputstyle {
    border: unset  !important;
    color: #1a1919  !important;
    cursor: pointer  !important;
    display: inline-block  !important;
    font-size: 14px  !important;
    font-style: normal  !important;
    font-weight: 700  !important;
    letter-spacing: .15625px  !important;
    line-height: 17px  !important;
    margin-bottom: 0  !important;
    padding-top: 5px  !important;
    vertical-align: middle  !important;
}
.newsCreate .btnInput#title, .inputstyle {
    color: #3a2557 !important;
    font-size: 16px !important;
    font-style: normal !important;
    font-weight: 700 !important;
    letter-spacing: .15625px !important;
    line-height: 19px !important;
    background:unset !important;
}
.inputstyle  {
    padding-left: 0 !important;
    margin-top:0 !important;
}
.add-image-field {
    background: #fff !important;
   
}
.editorMedia .selectLabel {
    text-align: left;
}


.ck-editor__editable_inline {
    min-height: 200px;
}

.preview-img{
    width: 100%;
    height: 100%;
}

.ck-content ul{
    list-style: initial !important;   
    padding-left: 40px;
}

.ck-content ol{
    list-style: numbers !important;   
    padding-left: 40px;
}

/*.create-form .ck-sticky-panel *{*/
/*    background-color: #4E83EB;*/
/*    color: #ffffff;*/
/*}*/
/*.create-form .ck-sticky-panel *:hover {*/
/*    background-color: #4e97fc;*/
/*}*/

input:disabled {
    background-color: transparent;
}

.form-submit,
.newsCreate #file-name,
.newsCreate .removeMedia{
    background-color: rgba(78, 131, 235, 1);
    transition: all 200ms cubic-bezier(0.250, 0.250, 0.750, 0.750); /* linear */
    transition-timing-function: cubic-bezier(0.250, 0.250, 0.750, 0.750); /* linear */
    /*background-color: #4e97fc;*/
}

.form-submit{
    border-radius: 0 !important;    
}

.newsCreate .form-submit:hover{
    background-color: #a9c2fb;
}

.newsCreate .remove-set-wrapper,
.newsCreate .remove-media-wrapper{
    top: 10px;
    right: 15px;
    opacity: 1;
}

.set:hover .remove-set-wrapper{
    opacity: 1;
}

.gallery-script:hover .remove-media-wrapper,
.speaker:hover .remove-media-wrapper,
.organizer:hover .remove-media-wrapper,
.researcher:hover .remove-media-wrapper{
    opacity: 1;
}

.newsCreate #file-name:hover,
.newsCreate .removeMedia:hover{
    opacity: 0.6;    
}


.set *:not(.textareaInput, .border-bottom, .ck *, .newsCreate .mediaSet,.border-grey-right,.border-grey-left){
    border: none !important;
}

#x-loader {
    z-index: 1100;
    display: block;
    position: fixed;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background: rgba(255,255,255,0.6);
}

#x-loader .x-loader-frame {
    background: #FFF;
    height: 60px;
    left: 50%;
    position: absolute;
    max-width: 450px;
    top: 50%;
    border-radius: 30px;
    width: 100%;
    transform: translate(-50%, -50%);
    box-shadow: 0 5px 60px #fff;
}

#x-loader .x-loader-gif {
    background: url(/media/ca-loader.gif) no-repeat 50% 50%;
    height: 100%;
    left: 0;
    position: absolute;
    top: 0;
    width: 100%;
}

.newsList tbody tr:hover {
    background-color: rgba(78,131,235,.1);
}

.icon-arrow-left:before, .icon-arrow-left:after {
    border-right: 2px solid;
    content: "";
    display: block;
    height: 8px;
    margin-top: -6px;
    position: absolute;
    transform: rotate(45deg);
    right: 14px;
    top: 50%;
    width: 0;
    color: #717171;
}

.icon-arrow-left:hover::before, 
.icon-arrow-left:hover::after {
    color: #ffffff;
}

.icon-arrow-left:after {
    margin-top: -1px;
    transform: rotate(132deg);
}

.change-status{
    background-color: #D72626;    
}

.change-status.active{
    background-color: #39AD5A;    
}

.pagination-item:hover {
    background-color: rgba(78, 131, 235, 0.6);    
}

.buttonBlue{
    background-color: rgba(78, 131, 235, 1);    
}

.buttonBlue:hover{
    background-color: rgba(78, 131, 235, 0.6);
    color: #ffffff;
}

.section__content{
    min-height: calc(100vh - 80px);
}
.section__content.col {
    overflow: hidden;   
}
.sorting .arrow-down.active{
    border-top: 6px solid #4e83eb;
    opacity: .85;
}

.sorting .arrow-up.active{
    border-bottom: 6px solid #4e83eb;
    opacity: .85; 
}

.remove-set-wrapper{
        
}

.remove-media-wrapper{
    
}


/* login css */

.form-group label {
  line-height: 16px;
  color: #AFAFAF !important;
  font-size: 12px !important;
  font-weight: 400 !important;
  margin-bottom: 9px;
  text-transform: uppercase;
}
.form .form-group {
   margin-bottom: 1rem !important;
}
.form-group .forgot-password {
  color: #525252 !important;
  font-size: 14px !important;
}
.button-login {
  align-items: center;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  border-radius: 100px;
  box-shadow: none;
  box-sizing: border-box;
  cursor: pointer;
  display: inline-flex;
  font-family: CircularStd, sans-serif;
  font-size: 1rem;
  height: auto;
  justify-content: center;
  line-height: 1.5;
  padding: 10px 40px;
  position: relative;
  text-align: center;
  text-decoration: none;
  -moz-user-select: none;
   -ms-user-select: none;
       user-select: none;
  -webkit-user-select: none;
  touch-action: manipulation;
  vertical-align: top;
  white-space: nowrap;
  min-width: 140px;
  font-size: 14px;
  font-weight: normal;
}

.button-21 {
  background-color: #4E82EA !important;
  color: #FFFFFF !important;
  border-width: 0 !important;
}

.arrow {
  border: solid #fff;
  border-width: 0 1px 1px 0;
  display: inline-block;
  padding: 3px;
  margin-left: 7px;
}
.arrow-right {
  transform: rotate(-45deg);
  -webkit-transform: rotate(-45deg);
}
.form h3, .h3 {
  color: #1A1919 !important;
  font-size: 20px !important;
  font-weight: 700 !important;
}
.blue {
  color: #4E83EB;
}
@media screen and (max-width: 573px) {
  .button-login {
    padding: 10px 25px;
  }
}

.form-group.style-group.date input {   
    max-width: 100%;
}


.preview-img {
    width: auto;
    max-height:250px;
    margin: auto;
    height: 100%;
    object-fit: cover;
    object-position: center center;
}

#modalCreate svg {
    margin: auto;
    display: flex;     
}
/*.add-image-field:hover,*/
/*.add-set:hover{*/
    
/*}*/


/*.icon-plus:hover,*/
/*{   */
    /*background: #4e83eb;    */
    /*color: white;*/
/*    transform: rotate(90deg);        */
/*    transition: rotate 1.2s ease;*/
    
/*}*/

input[type=text],
input[type=search]{
    width: 100%;    
}    

input[type=search]:hover{
    border: 1px solid #4e83eb;
}

input[type=search]:focus,
input[type=search]:active{
    border: 1px solid #666 !important;
}

input[type=search]{
    background: transparent;
    border: 1px solid #ACACAC;
}


.mt-5 {
    margin-top: 5px!important;    
}

/* section */
.section__nav li .hasChildren {    
    display: none;
}
.section__nav li.active .hasChildren {
    display: block;
}

/* Cards - Collapse */
.card {
    transition: all .3s ease;   
}
.card.expanded {
    transition: all .3s ease; 
}
.card.expanded .card-container {
    border-bottom: none !important;   
}
.card span.label, .card-right span {
    color: #6D6D6D;
    font-style: normal;
    font-weight: 400;
    font-size: 12px;
    line-height: 14px;
    letter-spacing: 0.15625px;
    /*text-transform: uppercase;*/
}
.card span.label {
    text-transform: uppercase;
}
.card-right span {
    margin-right: 12px;  
    text-transform: none;
}
.card a.toggle span {
    font-size: 0;
}
.card a.toggle:hover .icon:before {
    color: #4E83EB;
}
.card a.toggle {
    color: #6D6D6D;
    font-style: normal;
    font-weight: 400;
    font-size: 12px;
    line-height: 14px;
    letter-spacing: 0.15625px;
    text-transform: uppercase;
    padding-top: 26px;
    padding-bottom: 26px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    /*border-top: 1px solid #dee2e6;*/
    /*border-bottom: 1px solid #dee2e6;*/
}
.card a.toggle .icon-wrap {
    background-color: #F1F1F1;
}
.card a.toggle .icon {
    transition: transform .2s linear;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 24px;
    height: 24px;
    opacity: 1;    
}
.card a.toggle .icon.icon-menu-arrow {
    transform: rotate(90deg);
    font-size: 12px;
}
.section__header .dropdown .dropdown-toggle .icon-profile-icon-ca {
    opacity: 1;
    font-size: 24px;
}
.section__header .dropdown .dropdown-toggle .icon-menu-arrow-down {
    transform: rotate(90deg);
    font-size: 14px;
    opacity: 1;
    margin-left: 12px;
}
.section__header .dropdown .dropdown-toggle .icon-menu-arrow-down:before {
    color:#F15254;
}
.dropdown .greet .image {
    padding: 2px;   
}
.card a.toggle .icon:before {
    color: #6D6D6D;
}
.card.expanded a.toggle .icon {
    transition: transform .3s linear;
    transform: rotate(270deg);   
}
.card .icon-close {
    visibility: hidden;
    display: none;
}
.card .icon-open {
    visibility: visible;   
}
.card.expanded .icon-close {
    display: block;
    visibility: visible;   
}
.card.expanded .icon-open {
    display: none;
    visibility: hidden;   
}
.card.expanded .course-set-card-wrapper, .card.expanded .file-wrapper, .card.expanded .add-image-field, .card.expanded .add-button-set {
    visibility: visible;
    opacity: 1;
}
.card .add-button-set {
    max-height: 0;
    visibility: hidden;
}
.card.expanded .add-button-set {
    max-height: 100%;   
}
.card .course-set-card-wrapper, .card .file-wrapper {
    opacity: 0;
    transition: all .3s linear;    
    visibility: hidden;
    max-height: 0;
}
.card.expanded .course-set-card-wrapper, .card.expanded .file-wrapper {
    max-height: 100%;
}
.card .add-image-field {
    visibility: hidden;   
}

.card .mediaSet {
    margin-top: 23px;
}

.card.expanded span.label {
    font-weight: 700;   
}

.newsCreate .removeMedia {
    background: #f15254 !important;   
}

/* Navigation */
.section__nav .hasChildren {
    background-color: #F7F7F7;   
}
.section__nav .section__nav__link span {
    position: relative;   
}
.section__nav .section__nav__link:focus, .section__nav .section__nav__link:hover {
    background-color: white;
    color: #3A2557;
}
.section__nav .section__nav__link {
    position: relative;
    font-weight: 500;
    font-size: 14px;
    line-height: 120%;  
}

.section__nav .section__nav__link .icon-menu-arrow {
    transition: transform .3s ease;
    font-size: 14px;
}
.section__nav .navMenuArrow {
    right: 25px;   
}

.section__nav .active .section__nav__link .icon-menu-arrow {
    transition: transform .3s ease;
    transform: rotate(90deg);    
}
.section__nav .active .section__nav__link .icon-menu-arrow:before,
.section__nav .active .section__nav__link .icon-menu-icon-deree-academics:before,
.section__nav .active .section__nav__link .icon:before{
    color: #F15254;
}
.section__nav .section__nav__link:not(.active) span:before {
    content: '';
    position: absolute;
    bottom: 0;
    left:0;
    width: 0;
    height: 2px;
    border: 1px solid #F15254;
    transition: width .3s linear;
    visibility: hidden;
}
.section__nav .section__nav__link:focus span:before, .section__nav .section__nav__link:hover span:before {
    width: 32px;
    visibility: visible;
    transition: width .3s linear;
}
.section__nav.section__menu__maxWidth .section__nav__link:focus span:before, .section__nav .section__nav__link:hover span:before {
    content:unset;
}
.section__nav .section__nav__link.active {
    background-color: white;
    color: #3A2557;  
}
.section__nav .section__nav__link.active span:before {
    content: '';
    position: absolute;
    bottom: 0;
    left:0;
    width: 32px;
    height: 2px;
    border: 1px solid #F15254;
    
}
.section__content__inner__create__sidebar .form-group #metadescription {
    border: 1px solid #f1f1f1;
    margin-top: 9px;
}
.section__content__inner__create__sidebar .field-wrapper .form-group:hover .selectBox-arrow {
    background: url('/media/select-arrow-blue.svg') 50% center no-repeat;
}
.section__content__inner__create__sidebar .field-wrapper .form-group:hover .selectBox-dropdown .selectBox-label {
    /*color: #4E83EB !important;*/
}
.section__content__inner__create__sidebar .field-wrapper .form-group:hover label {
    color: #4E83EB !important;
}
.section__content__inner__create__sidebar .field-wrapper .form-group .js-select {
    margin-top: 9px !important;
}
.section__nav .section__nav__link.active .icon {
    font-weight: 400;   
}
.section__nav .section__nav__link .icon.icon-menu-icon-news {
    font-size: 14px;
}
.section__nav .section__nav__link:focus .icon, .section__nav .section__nav__link:hover .icon, .section__nav .section__nav__link.active:hover .icon {
    font-weight: 700;   
}


.select2-container--open .select2-selection.select2-selection--single .select2-selection__rendered {
    color: #4E83EB;
}

/* Status Buttons */
.statusButton .button {
    font-style: normal;
    font-weight: 400;
    font-size: 12px;
    line-height: 14px;
}
.statusButton .button.active span {
    color: #39AD5A;   
}
.statusButton .button span {
    color: #E33F3F;   
}

/* MODAL */
#modalInfo.modal .modal-header {
    justify-content: end;
    margin-right: 45px;
    margin-top: 20px;
}
#modalInfo .modal-dialog {
    margin: unset;
    right:0;
    position: absolute;
    height: 100%;
}
#modalInfo.modal.show .modal-dialog {
    transform: translateX(-600px);   
}
#modalInfo.modal.fade .modal-dialog {
    transform: translateX(0);
    min-width: 480px;
}
#modalInfo.modal {
    top: 80px;
    right: 0;
    left: unset;
    width: calc(100% - 220px);
    z-index:5;
}
#modalInfo.modal .modal-dialog .modal-content {
    border-radius: unset;
    border: none;
    height: 100%;
    overflow: auto;
}
#modalInfo.modal .modal-dialog .modal-body {
    overflow: auto;
}
#modalInfo.modal .icon {
    opacity: 1;   
}
#modalInfo.modal .buttonClose {
    align-items: center !important;
    background: #4E83EB;
    border: 1px solid #4e82ea;
    border-radius: 50%;
    color:white;
    display: flex;
    font-size: 14px;
    font-style: normal;
    font-weight: 700;
    line-height: 17px;
    padding: 15px;
}
#modalInfo.modal .buttonClose .icon-close {
    font-weight: 700;
}
#modalInfo.modal .modal-body .modal-body-title,#modalInfo.modal .modal-info .modal-body-title {
    /*font-family: 'Open Sans';*/
    font-weight: 400;
    font-size: 11px;
    line-height: 15px;
    text-transform: uppercase;
    color: #7C7C7C;
    margin-bottom: 12px;
}
#modalInfo.modal .modal-body .modal-body-value {
    font-style: normal;
    font-weight: 400;
    font-size: 14px;
    line-height: 17px;
    color: #525252;
    padding-bottom: 20px;
    border-bottom: 1px solid #E4E4E4;
    margin-bottom: 25px;
}
#modalInfo.modal .modal-info .modal-body-value {
    font-style: normal;
    font-weight: 400;
    font-size: 18px;
    line-height: 22px;
    color: #525252;
    margin-bottom: 25px;
}
#modalInfo.modal  .modal-info {
    margin-left: 50px;
    margin-right: 45px;
}
#modalInfo.modal .modal-border-bottom {
    border-bottom: 1px solid #E4E4E4;   
}
#modalInfo.modal .modal-body .modal-body-value-attachments {
    display: flex;
    align-items: center;
    font-style: normal;
    font-weight: 400;
    font-size: 14px;
    line-height: 17px;
    color: #4E83EB;
}
#modalInfo.modal .modal-body .modal-body-value-attachments:hover {
    color:#525252;    
}
#modalInfo.modal .modal-body .modal-body-value-attachments .icon:before {
    color:#525252; 
}

/* fixes */
.switch .slider::before {
    bottom: 3px;
}
.section__menu {
    z-index: 10;   
}

/* select box */
.selectBox-options, .selectBox-options LI, .selectBox-options LI A {
    /*max-width: 80%;*/
}
.selectBox-dropdown-menu {
    border:none;
    border-radius: 5px;
    /*margin-left: 20px;*/
    /*margin-right: 20px;*/
    top: 1px;
    box-shadow: 0px 4px 25px rgba(0, 0, 0, 0.15);    
}

.select2-container--default .select2-search--inline .select2-search__field {
    color: #3A2557;
    font-family: 'DIN Next LT Pro';    
    font-style: normal;
    font-weight: 500;
    font-size: 16px;
    line-height: 19px;
    letter-spacing: 0.15625px;    
}

.relative {
    position: relative;   
}

/*content tags*/
.content.content-tags input {     
    font-family: 'DIN Next LT Pro';
    font-style: normal;
    font-weight: 500;
    font-size: 16px;
    line-height: 19px;
    letter-spacing: 0.15625px;
    color: #3A2557;
    padding: 14px 14px 11px 14px;
    height: 43px;
}
.content.content-tags .addTagLabel {
    padding: 10px;
    display: inline-block;
    height: 100%;
    visibility: visible;
    color: #6D6D6D;
    opacity: .5;
}
.content.content-tags:hover .addTagLabel {
    opacity: 1;
}
.content.content-tags:hover label { 
    color: #4E83EB !important;
}
.wrapper .content .tags-container {
    border: 1px solid #F1F1F1;
    border-radius: 5px;
    display: flex;
    position: relative;
}
.wrapper .content .tags-container.tag-open-value .addTagLabel {
    display:none;
}
.wrapper .content .tags-container.tag-open-value .btnTagAdd {
    bottom: 15px;
}
.wrapper .content.content-tags .tags-container.tags-open {
    border-color: #AFAFAF;
    flex-direction: column;
}
.wrapper .content.content-tags .tags-container.tags-open .addTagLabel {
    visibility: hidden;
    height:0;
    padding:0;
}
.wrapper .content .tags-container .btnTagAdd {
    position: absolute;
    right: 11px;
    bottom: -2px;
}
.wrapper .content.content-tags .tags-container.tags-open .btnTagAdd {
    bottom: 15px;
}

.section__content__inner__create__sidebar .form-group label, .section__content__inner__create__sidebar label.tags {
    font-family: 'DIN Next LT Pro' !important;
    font-style: normal !important;
    font-weight: 400 !important;
    font-size: 14px !important;
    line-height: 17px !important;
    letter-spacing: 0.15625px !important;
    color: #7C7C7C !important;    
    text-transform: none !important;
    display: block;
}
.section__content__inner__create__sidebar label.tags {
    margin-bottom: 9px;   
}
.newsCreate .mediaSet .textareaInput {
    font-family: 'DIN Next LT Pro';
    font-style: normal;
    font-weight: 500;
    font-size: 16px;
    line-height: 19px;
    letter-spacing: 0.15625px;
    color: #3A2557;
    padding: 12px;
}

.videoUrl .inputstyle.btnInputVideoUrl {
    border-bottom: 1px solid #AFAFAF !important;
    border-radius: unset !important;
}
.videoUrl .input-state:hover .selectLabel {
    color: #4E83EB;
}
.videoUrl .inputstyle.btnInputVideoUrl:focus {
    border-bottom: 1px solid #AFAFAF !important;
}

/*.mediaSet .videoUrl {*/
/*    margin-right: 24px;   */
/*}*/

.create-form .section__content__inner__create .textareaInput {
    font-family: 'DIN Next LT Pro';
    font-style: normal;
    font-weight: 500;
    font-size: 16px;
    line-height: 19px;
    letter-spacing: 0.15625px;
    color: #3A2557;
    padding: 12px;
}
.create-form .section__content__inner__create .textareaInput:focus {
    
}
.create-form .section__content__inner__create .editorMedia .textareaInput {
    font-weight: 700;
    margin-bottom: 30px;
    border: 1px solid #AFAFAF;
}
.content ul li i {
    font-style: normal;   
}

/*default*/
.select2-container--default .select2-selection--multiple {
    border: 1px solid #F1F1F1;
    border-radius: 25px;
    padding: 6px 0 12px 0;
}

/*focus*/
.select2-container--default.select2-container--focus .select2-selection--multiple {
    border: 1px solid #AFAFAF;
    /*border-radius: 25px;*/
}

.select2-container--default .select2-selection--multiple .select2-selection__choice {
    margin-left: 12px;   
}

.newsCreate .removeMedia.remove-media-wrapper {
    right:0;
    top: 0;
}
.controls .controlButtons .itemButton .buttonControl {
    border: 1px solid #888;
    padding: 0;
}
.controls .controlButtons .itemButton .buttonControl .icon {
    opacity: 1;
    fill: #888;
    padding: 2px;
}
.controls .controlButtons .itemButton .buttonControl .icon-menu-icon-faculty {
    font-size: 14px;
    padding: 5px;
}
.controls .controlButtons .itemButton .btn-preview:hover .icon:before{
    color:#4E82EA;
}

.dropdown-menu .dropdown-item .icon {
    opacity: 1;   
}
.dropdown .dropdown-menu {
    box-shadow: 0px 4px 24px rgba(0, 0, 0, 0.25);
    border-radius: 5px;   
    border: none;
}

/* overwrite states */
.select2-container .select2-selection--single {
    /*border-bottom: unset !important;   */
}
.selectBox-dropdown.selectBox-menuShowing-bottom {
    border-bottom-left-radius:0 !important;
    border-bottom-right-radius:0 !important;
}
.selectBox-dropdown-menu.selectBox-options.selectBox-options-bottom {
    border-top-left-radius:0 !important;
    border-top-right-radius:0 !important;
    border: 1px solid #ACACAC;
    top: 1px;
}
.select2-container--default .select2-selection--single .select2-selection__arrow {
    display: none;   
}

/*sidebar*/
.section__content__inner__create__sidebar .switch {
    margin-top: 8px;   
}
.section__content__inner__create__sidebar .form-group.style-group.date {
    position: relative;   
}
.section__content__inner__create__sidebar .form-group.style-group.date-select .icon {
    position: absolute;
    right: 30%;
    top: 58%;
}
.section__content__inner__create__sidebar .form-group.style-group.time-select .icon {
    position: absolute;
    right: 23%;
    top: 40%;
}
.section__content__inner__create__sidebar .form-group textarea {
    background: transparent;
    margin-top: 9px;
}

.section__content__inner__create__sidebar .form-group.style-group.date input {
    border-radius: 25px !important;
    background: transparent !important;
    border: 1px solid #AFAFAF;
}

.selectBox-dropdown {
    min-width: calc(100% + 2px) !important;
}

.newsCreate .coverLabel, .newsCreate .selectLabel {
    margin-bottom : 9px;   
}
/*fix for sidebar select text overflow*/
.selectBox-options .selectBox-optgroup {
    white-space: unset;   
}

.selectBox-dropdown-menu.selectBox-options.selectBox-options-bottom {
    margin-right: 28px;   
}
.newsCreate .file-box-container {
    border-top: unset;   
}

.border-top {
    border-top: 1px solid #dee2e6 !important;   
}

.card.expanded .course-set-card-wrapper, .card.expanded .file-wrapper {
    margin-top: 0;   
}
.card.expanded .add-button-set .text-right {
    border-bottom: 1px solid #dee2e6 !important;
}

/*ck editor*/
.ck.ck-editor__main p {
    font-family: DIN Next LT Pro;
    font-weight: normal;
    font-size: 15px;
    line-height: 100%;
    letter-spacing: 0.09px;
    color: #000;
}

/*border transitions*/
.border-bottom {
    transition: border-color .25s linear;
}
.input-border-transition .border-bottom {
    transition: border-color .25s linear;
    border-color: #AFAFAF !important;
}

.input-border-transition .selectLabel {
   color: #4E83EB;
}

.section__content__select:hover {
    border: 1px solid #ACACAC;  
}

.media-file-border:hover .remove-media-wrapper {
    opacity: 1;
}
.file_input_wrap:hover .remove-media-wrapper {
    opacity: 1;
}

.section__content__inner .table-data {
    overflow: auto;   
}
.section__content__inner table {
 overflow-y: scroll;   
}
.section__content .select2-container--default .select2-selection--single:hover,
.section__content .select2-container--default .select2-selection--multiple:hover,
.section__content a.selectBox:hover {
    cursor:pointer;
}
.section__content .newsList tbody tr:hover {
    cursor:pointer;   
}

.controls .controlButtons .itemButton .icon-view-status-icon::before {
    color: #888 !important;
}
.controls .controlButtons .itemButton .btn-preview:hover .icon-view-status-icon::before {
    color: #4E82EA !important;
}


/* selects labels and children overwrites */
.selectBox-options LI A {
    color: #515253 !important;
    padding: 8px 15px 7px 25px !important;
}
.selectBox-options LI A:hover {
    cursor: pointer;
    background-color: #f1f1f1;
}


/* input custom */
.domain-selected input[type="checkbox"] {
    appearance: none;
    width: 22px;
    height: 22px;
    transform: translateY(-0.075em);
    display: grid;
    place-content: center;
}

.domain-selected input[type="checkbox"]::before {
  content: "";
  width: 22px;
  height: 22px;
  transform: scale(0);
  transition: 120ms transform ease-in-out;
  background: rgba(78, 131, 235, 1) url('/media/icon-checkbox.svg') center center no-repeat;
  border-radius: 50%;
}

.domain-selected input[type="checkbox"]:checked::before {
  transform: scale(1);
}

.domain-selected input[type="checkbox"]:focus {

}

@media all and (max-width: 1400px) {
    .section .section__nav {
        width: 214px;   
    }
}

/* turn off calendar / time icons */
.section__content__inner__create__sidebar .form-group.style-group.date-select .icon,
.section__content__inner__create__sidebar .form-group.style-group.time-select .icon {
    display: none;
}
/* default date css webkit */
.section__content__inner__create__sidebar .form-group.style-group input[type="date"]::-webkit-calendar-picker-indicator {
    /*display: none;*/
    /*-webkit-appearance: none;*/
}
.selectBox-dropdown-menu li a {
    position: relative;
}

/* language flag icons */
.selectBox-dropdown-menu li a[rel="1"]:before,
.selectBox-dropdown-menu li a[rel="2"]:before,
.lang-filters a.section__content__select:before {
    content: '';
    position: absolute;
    left: 8px;
    display: flex;
    align-items: center;  
    width: 18px;
    height: 18px;
}
.lang-filters a.section__content__select:before {
    top: 13px;
    background:url('/media/icon-eng-lang.svg') center center no-repeat; 
}
.selectBox-dropdown-menu li a[rel="1"]:before {
    background:url('/media/icon-eng-lang.svg') center center no-repeat; 
}
.selectBox-dropdown-menu li a[rel="2"]:before {
    background:url('/media/icon-el-lang.svg') center center no-repeat;   
}

/*select#lang option[value="1"] { */
/*    background:url('/media/icon-eng-lang.svg') center center no-repeat;   */
/*}*/
/*select#lang option[value="2"] { */
/*    background:url('/media/icon-el-lang.svg') center center no-repeat;  */
/*}*/

.selectBox-dropdown-menu li a[rel="1"],
.selectBox-dropdown-menu li a[rel="2"] {
    padding: 8px 15px 7px 35px !important;
}
.lang-filters a.section__content__select {
    padding: 15px 20px 15px 35px;
}

.select2-container--open .select2-dropdown--below {
    box-shadow: 0px 4px 25px rgba(0, 0, 0, 0.15);
}

/* file input preview width pdf/docx icon */
/* pdf */
.file_input_wrap .img_preview_wrap img[src$=".pdf"],
.file_input_wrap .img_preview_wrap img[src$=".doc"],
.file_input_wrap .img_preview_wrap img[src$=".docx"] {
  font-weight: bold;
  position: relative;
  min-height: 60px;
}
.file_input_wrap .img_preview_wrap img[src$=".pdf"]:before {
    content: '';
    display: flex;
    align-items: center;
    padding-left: 40px;
    position: absolute;
    top: 0;
    left: 20px;
    background:url('/media/icon-acg-ca-files-pdf.svg') left center no-repeat;
    min-height: 50px;
}
/* doc/docx */
.file_input_wrap .img_preview_wrap img[src$=".doc"]:before,
.file_input_wrap .img_preview_wrap img[src$=".docx"]:before {
    content: '';
    display: flex;
    align-items: center;
    padding-left: 40px;
    position: absolute;
    top: 0;
    left: 20px;
    background:url('/media/icon-acg-ca-files-doc.svg') left center no-repeat;
    min-height: 50px;
}

